home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / dlibs12.arc / H.ARC / MALLOC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-01  |  326 b   |  18 lines

  1. /*
  2.  *    Header for memory management routines
  3.  */
  4.  
  5. extern    long    _BLKSIZ;    /* malloc() granularity variable */
  6.  
  7. extern    char    *malloc();
  8. extern    char    *calloc();
  9. extern    char    *lalloc();
  10. extern    char    *realloc();
  11. extern    long    msize();
  12. extern    long    memavail();
  13.  
  14. extern    char    *alloca();
  15.  
  16. extern    char    *sbrk();
  17. extern    int    brk();
  18.